-
Notifications
You must be signed in to change notification settings - Fork 137
feat: add color prop to icon component #2499
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
|
🎭 Component Tests Report is ready. |
|
Visual Tests Report is ready. |
src/components/Icon/Icon.tsx
Outdated
| size?: number | string; | ||
| fill?: string; | ||
| stroke?: string; | ||
| color?: CSSProperties['color'] | string; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What's the point of duplication style functionality? Let's instead add feature from the Text component, which have color property accepting text color name (typeof TEXT_COLORS[number]).
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
applied your proposal
Closes #2335